home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 February: Tool Chest / Apple Developer CD Series Tool Chest February 1996 (Apple Computer)(1996).iso / Sample Code / DTS QT Utilities.Aug-95 / Projects & Test Apps / DigitizerShell / Mac Framework / AppConfiguration.h next >
Encoding:
C/C++ Source or Header  |  1995-04-25  |  512 b   |  33 lines  |  [TEXT/MPCC]

  1. /*
  2.     File:        AppConfiguration.h
  3.     
  4.     Contains:    Values for configuration purposes inside the actual application.
  5.     Written by:    DTS
  6.  
  7.     Copyright:    © 1994-1995 by Apple Computer, Inc., all rights reserved.
  8.  
  9.     Change History (most recent first):
  10.  
  11.        <1>         12/30/94    khs        first file
  12.        
  13. */
  14.  
  15.  
  16. #pragma once
  17.  
  18.  
  19. #include <Movies.h>
  20.  
  21.  
  22. // TOOLBOX CONSTANTS
  23. enum eBasicConstants {
  24.     kWNEDefaultSleep = 0,                                                                // WNE Sleep time value
  25.     kDefaultSysBeep = 10
  26. };
  27.  
  28. enum eWindowConstants {
  29.     kDefaultX = 100,
  30.     kDefaultY = 100
  31. };
  32.  
  33.